home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul40.lha / ixemul-bin / NEWS < prev    next >
Text File  |  1995-08-28  |  4KB  |  103 lines

  1. ============
  2. VERSION 41.3
  3. ============
  4.  
  5. Updated DBL_MIN and DBL_MAX in float.h to include one additional digit
  6. of precision.  Enclose negative constants in parens to avoid unexpected
  7. conversion to subtraction via cpp macros.
  8.  
  9. Applied patch from Hans Verkuil to fix serious bug in signal handling,
  10. to reset all signal handlers after an execve, except for those which are
  11. being ignored (SIG_IGN).
  12.  
  13. Applied patch from joop van de wege to trap.s to set 68881 rounding mode
  14. back to truncation instead of "round to nearest", as required by the
  15. ANSI C standard which specifies truncation.
  16.  
  17. Integrated ixtrace into source tree and arranged for it to be built and
  18. installed.
  19.  
  20. ============
  21. VERSION 41.2
  22. ============
  23.  
  24. Added "#include <sys/types.h>" to <sys/stat.h> to be more compatible
  25. with most current systems that do this inclusion for you.  This change
  26. should be backwards compatible with code that does the inclusion
  27. explicitly.
  28.  
  29. Changed version string to be style guide compliant.  Also arranged that
  30. version.o gets linked in, since it has the $VER: string and is otherwise
  31. unreferenced by any ixemul.library code.
  32.  
  33. Merged patches from Hans Verkuil to fix execve environment passing,
  34. always open the console for stderr if no other file handle is provided,
  35. move AmigaDOS style filename matching into glob(), and fix a small problem
  36. with "open(NULL,...) that caused enforcer hits.
  37.  
  38. ============
  39. VERSION 41.1
  40. ============
  41.  
  42. A 68040 version of the library with soft floating point is now built,
  43. since there are apparently systems that use the versions of the 68040
  44. without FPUs.
  45.  
  46. Fixed crt0 files to use "jra _ENTRY" as first instruction rather than
  47. "jmp pc@(_ENTRY)" which was getting assembled by gas 2.5.2 as a 68020+
  48. instruction.  Note "jmp pc@(_ENTRY:W)" seems to generate the 68000
  49. instruction but a bad jump offset.  Added corresponding change to
  50. execve.c to recognize ixemul using executables with this change.
  51.  
  52. Fixed cpu.h, machdep.c, trap.s to avoid pc relative assembly instruction
  53. that was getting compiled as 68020+ instruction and causing crashes on
  54. 68000 machines.
  55.  
  56. Fixed numerous files that did "#include" of "DEFS.H" rather than "defs.h".
  57. This is an innocuous bug on the Amiga, which is case independent, but
  58. it kills cross compilations.
  59.  
  60. ============
  61. VERSION 41.0
  62. ============
  63.  
  64. No significant changes since the 40.6 beta release other than the
  65. mechanism (and macros) for building debug versions has been cleaned
  66. up and the version number has been bumped to 41.0.
  67.  
  68. Did include the cat'able man pages back in the source tree, but no
  69. work has been done yet to track down the sources for the man pages
  70. and arrange for them to be properly integrated into the tree and
  71. have the cat'able versions generated from those sources.
  72.  
  73. ============
  74. VERSION 40.6
  75. ============
  76.  
  77. Many bugs have been fixed since the 40.4 release, including a serious
  78. one that was causing memory corruption and many enforcer or mungwall
  79. hits.
  80.  
  81. Network support has been reintegrated into the library, however it is
  82. still mostly untested.  In particular, many functions are only
  83. available for static linking from the libnet.a library.  By the next
  84. release, it is expected that libnet.a will be incorporated in libc.a.
  85.  
  86. Work is underway to merge the best features from at least two
  87. different strains of the ixemul library.  Many more changes are
  88. expected by the 41.0 release.
  89.  
  90. An environment variable called "IXSTACK" is now used to control the
  91. stack size of programs started by system().  If the current stack is
  92. smaller than the value in IXSTACK, the stack is raised to the value
  93. specified in IXSTACK.  So IXSTACK is a minimum value.
  94.  
  95. Automatic stack checking, with a requestor if the stack overflows, is
  96. available for executables compiled with a version of gcc that supports
  97. the -mstackcheck option.  This also requires linking with new crt0 and
  98. libc.a.
  99.  
  100. Automatic stack extension as necessary is available for executables
  101. compiled with a version of gcc that supports the -mstackextend option.
  102. This also requires linking with new crt0 and libc.a.
  103.